runtime.mcache.nextSample (field)

15 uses

	runtime (current package)
		arena.go#L802: 		if rate != 1 && int64(userArenaChunkBytes) < c.nextSample {
		arena.go#L803: 			c.nextSample -= int64(userArenaChunkBytes)
		malloc.go#L1235: 	c.nextSample -= int64(span.elemsize)
		malloc.go#L1236: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1337: 	c.nextSample -= int64(size)
		malloc.go#L1338: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1428: 	c.nextSample -= int64(size)
		malloc.go#L1429: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1521: 	c.nextSample -= int64(size)
		malloc.go#L1522: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1595: 	c.nextSample -= int64(size)
		malloc.go#L1596: 	if c.nextSample < 0 || MemProfileRate != c.memProfRate {
		malloc.go#L1834: 	c.nextSample = nextSample()
		mcache.go#L25: 	nextSample  int64   // trigger heap sample after allocating this many bytes
		mcache.go#L98: 	c.nextSample = nextSample()